Labels:text | electronics | screenshot | display | software | computer | number | operating system OCR: MAIN :: #Form1 :: action method action(var eventInfo ActionEvent) if eventInfo.isPreFilter() then ; This code executes for each object on the form. else ; This code executes only for the form. switch ; Close the application if all of the forms can be closed. case eventInfo.id() = UserAction + CloseAppAction : if sysLib.closeAllFormsL ("Desktop") then close() endIf ; Close all windows. case eventInfo.id() = UserAction + CloseWindowsAction : sysLib.closeAllFormsL("Desktop") endSwitch endIf endMethod Edit Line: 15 Col: 61